home *** CD-ROM | disk | FTP | other *** search
/ New Star Software Collection / NSS_Collection.iso / 3-051 memory commander 314 / 1.ima / MCINFOC.MCD < prev    next >
Encoding:
Text File  |  1992-04-15  |  3.0 KB  |  71 lines

  1.  
  2.                       ┌──────────────────────────────┐
  3.                       │  CONFIG.SYS Recommendations  │
  4.                       └──────────────────────────────┘
  5.  
  6.     The following options can be set within the CONFIG.SYS file to 
  7.     control DOS, and increase available low memory and/or improve 
  8.     performance. 
  9.  
  10.     BUFFERS  The BUFFERS statement selects the number of 528 byte disk 
  11.         buffers for DOS.  Additional DOS memory can be obtained by 
  12.         decreasing the number of buffers. 
  13.  
  14.         Best performance is usually achieved with buffers set to a value
  15.         depending on the size of your hard disk, as follows:
  16.  
  17.                     Hard Disk Size    In CONFIG.SYS
  18.                     ──────────────    ─────────────
  19.                     39MB or under       BUFFERS=20
  20.                     40MB to 79MB        BUFFERS=30
  21.                     80MB to 119MB       BUFFERS=40
  22.                     120MB or over       BUFFERS=50
  23.  
  24.         Note: If you are using MS/PC-DOS 5.0, and use the recommended
  25.         DOS=HIGH statement in CONFIG.SYS, DOS will place up to 30 buffers
  26.         into the HMA area.  Setting a BUFFERS value of 30 or less will
  27.         not gain any additional low DOS memory.
  28.  
  29.  
  30.     FILES  The FILES statement specifies the number of file handles which 
  31.         DOS can have open at one time.  Each count requires about 48 
  32.         bytes. 
  33.  
  34.         It is recommended for most programs that at least 20 files be 
  35.         set.  For reliable operation with Windows, files should be set to 
  36.         at least 25.  The amount of space required for 25 files is only 
  37.         1200 bytes.  Additional DOS memory can be obtained by reducing 
  38.         the number of files.
  39.  
  40.     STACKS  The STACKS statement was added in DOS 3.3.  It controls the 
  41.         number of bytes used to allocate DOS's internal stack for 
  42.         interrupt handling. 
  43.  
  44.         Setting STACKS=0,0 will reduce the amount of stack usage to the 
  45.         minimum, saving about 1100 bytes of DOS memory over the default 
  46.         when no stacks statement is used.  Using some TSRs or Windows 
  47.         enhanced mode may cause system problems if STACKS is set to 0,0.  
  48.  
  49.     SHELL Environment Sizing  The environment is an area in memory for 
  50.         holding specific information for various programs.  It is set 
  51.         with the SHELL statement, using the slash "e" option.  For 
  52.         example, to set COMMAND.COM as the shell, and use an environment 
  53.         of 800 bytes, the CONFIG.SYS line for DOS 5.0 would be: 
  54.  
  55.                 SHELL=C:\DOS5\COMMAND.COM C:\DOS5 /e:800 /p
  56.  
  57.         The correct path for COMMAND.COM must be included in the shell 
  58.         statement, and may be different than shown above. 
  59.  
  60.         Reducing the environment size saves low memory, but programs may 
  61.         require this space to operate properly.  If no slash "e" option is 
  62.         used, or a SHELL statement is not used, DOS defaults to a 256 byte
  63.         environment.
  64.  
  65.     LASTDRIVE  The LASTDRIVE option assigns the maximum number of drives
  66.         for the system.  If you use this command, set the LASTDRIVE letter
  67.         to indicate only those drives you really need.  For systems using 
  68.         drives past E:, each additional drive letter requires 80 to 100 
  69.         bytes.  This means the command LASTDRIVE=Z could use over 2K bytes.
  70.  
  71.